N-address code - vertaling naar arabisch
Diclib.com
Online Woordenboek

N-address code - vertaling naar arabisch

REPRESENTATION OF INTERMEDIATE CODE USED BY COMPILERS
Three address code

real address         
REPRESENTATION OF MEMORY ADDRESS
Real address; Binary address; Binary addressing; Binary code addressing
عنوان مطلق أو مباشر لموقع فى الذاكرة الرئيسية
physical address         
REPRESENTATION OF MEMORY ADDRESS
Real address; Binary address; Binary addressing; Binary code addressing
عنوان حقيقى
ADDRESS         
  • 50px
  • James Fitton]] (1958)
COLLECTION OF INFORMATION THAT DESCRIBES THE LOCATION OF A BUILDING, APARTMENT, OR OTHER STRUCTURE
Address (geographical); Adress; Street address; Address (geography); Postal address; Mailing address format by country; Addresses; Mail address; Mailing address; Post adress; Addresse; Postal Addresse; Postal addresse; Post address; Postal addresses in the United Kingdom; Postal address (United States); United Kingdom postal addresses; Addresses in the UK; Address conventions by country; Addresses in Palau; Addess; Address (geography; Address format; Home address; Postal addresses in the netherlands; US address

ألاسم

كَلِمَة ; كَلِمَة ; خُطْبَة ; خُطْبَة ; خِطَاب ; خِطَاب

الفعل

عَنْوَنَ ; عَنْوَنَ

Definitie

physical address
<memory management> The address presented to a computer's main memory in a virtual memory system, in contrast to the virtual address which is the address generated by the CPU. A memory management unit translates virtual addresses into physical addresses. (1995-03-31)

Wikipedia

Three-address code

In computer science, three-address code (often abbreviated to TAC or 3AC) is an intermediate code used by optimizing compilers to aid in the implementation of code-improving transformations. Each TAC instruction has at most three operands and is typically a combination of assignment and a binary operator. For example, t1 := t2 + t3. The name derives from the use of three operands in these statements even though instructions with fewer operands may occur.

Since three-address code is used as an intermediate language within compilers, the operands will most likely not be concrete memory addresses or processor registers, but rather symbolic addresses that will be translated into actual addresses during register allocation. It is also not uncommon that operand names are numbered sequentially since three-address code is typically generated by the compiler.

A refinement of three-address code is A-normal form (ANF).